From a1bd3efb3f610075f2641a3bb3d3693c5feee565 Mon Sep 17 00:00:00 2001 From: Jimi Xenidis Date: Sun, 21 Jan 2007 07:47:35 -0500 Subject: [PATCH] [XEN][POWERPC] remove redundant and confusing restart/halt messages Signed-off-by: Jimi Xenidis --HG-- extra : transplant_source : %D7%A6%3B%E8Y%5E%3B%7FC%5B%A2%FC3R%D6%08%9A%84%A8%5D --- xen/arch/powerpc/domain.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/xen/arch/powerpc/domain.c b/xen/arch/powerpc/domain.c index f61effeef8..97a7ddc002 100644 --- a/xen/arch/powerpc/domain.c +++ b/xen/arch/powerpc/domain.c @@ -105,13 +105,13 @@ void arch_domain_destroy(struct domain *d) static void machine_fail(const char *s) { - printk("%s failed, manual powercycle required!\n", s); + printk("%s failed, manual powercycle required!\n" + " spinning....\n", s); for (;;) sleep(); } void machine_halt(void) { - printk("machine_halt called: spinning....\n"); console_start_sync(); printk("%s called\n", __func__); rtas_halt(); @@ -121,7 +121,6 @@ void machine_halt(void) void machine_restart(char * __unused) { - printk("machine_restart called: spinning....\n"); console_start_sync(); printk("%s called\n", __func__); rtas_reboot(); -- 2.30.2